home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / STRLEN.C < prev    next >
Text File  |  1980-01-10  |  384b  |  10 lines

  1. /*
  2. ** return length of s
  3. */
  4. strlen(s) char *s; {
  5.   int strlen;
  6.   strlen = 0;
  7.   while(*s++) strlen++;
  8.   return strlen;
  9.   }
  10.